home *** CD-ROM | disk | FTP | other *** search
/ Scene 96 / Scene 96 International Edition (Zyklop Software) (Disc 2) (1997).iso / misc / coding / midas060 / src / mglobals.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-16  |  1.6 KB  |  62 lines

  1. /*      MGLOBALS.H
  2.  *
  3.  * MIDAS Sound System global variables
  4.  *
  5.  * $Id: mglobals.h,v 1.4 1997/01/16 18:41:59 pekangas Exp $
  6.  *
  7.  * Copyright 1996,1997 Housemarque Inc.
  8.  *
  9.  * This file is part of the MIDAS Sound System, and may only be
  10.  * used, modified and distributed under the terms of the MIDAS
  11.  * Sound System license, LICENSE.TXT. By continuing to use,
  12.  * modify or distribute this file you indicate that you have
  13.  * read the license and understand and accept it fully.
  14. */
  15.  
  16. #ifndef __MGLOBALS_H
  17. #define __MGLOBALS_H
  18.  
  19.  
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23.  
  24.  
  25. extern int GLOBALVAR mUseEMS;           /* 1 if EMS should be used */
  26. extern int GLOBALVAR mEnableSurround;   /* 1 if surround sound is enabled */
  27. extern int GLOBALVAR mBufferLength;     /* buffer length in milliseconds */
  28. extern int GLOBALVAR mBufferBlocks;     /* number of buffer blocks
  29.                                            (not applicable to all SDs) */
  30. extern int GLOBALVAR mDefaultFramerate; /* default framerate (in 100*Hz), used
  31.                                            when screen sync is not available*/
  32. extern int GLOBALVAR mSyncScreen;       /* 1 if timer can be synchronized to
  33.                                            screen */
  34.  
  35.  
  36.  
  37.  
  38. #ifdef __cplusplus
  39. }
  40. #endif
  41.  
  42.  
  43.  
  44.  
  45. #endif
  46.  
  47.  
  48. /*
  49.  * $Log: mglobals.h,v $
  50.  * Revision 1.4  1997/01/16 18:41:59  pekangas
  51.  * Changed copyright messages to Housemarque
  52.  *
  53.  * Revision 1.3  1996/05/31 21:40:35  pekangas
  54.  * Added mSyncScreen and mDefaultFramerate
  55.  *
  56.  * Revision 1.2  1996/05/25 09:32:26  pekangas
  57.  * Added mBufferLength and mBufferBlocks
  58.  *
  59.  * Revision 1.1  1996/05/22 20:49:33  pekangas
  60.  * Initial revision
  61.  *
  62. */